# This Python program will find the L.C.M. & G.C.D. of two input number's taken from user

# This function computes GCD 
def compute_gcd(x, y):
   while(y):
       x, y = y, x % y
   return x


# This function computes LCM
def compute_lcm(x, y):
   lcm = (x*y)//compute_gcd(x,y)
   return lcm


num1 = int(input("Enter the 1st Number:-"))
num2 = int(input("Enter the 2nd Number:-"))

print("The L.C.M. is", compute_lcm(num1, num2))
print("The G.C.D. is", compute_gcd(num1, num2))
